home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_44_audio play track = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  608 b   |  24 lines

  1. on mouseEnter
  2.   global gCDtrackplaying, gCD
  3.   if Stopped(gCD) then
  4.     set the cursor of sprite the currentSpriteNum to [the number of member "finger", the number of member "fingermask"]
  5.   else
  6.     set the cursor of sprite the currentSpriteNum to 0
  7.   end if
  8. end
  9.  
  10. on mouseDown
  11.   global gCDtrackplaying, gCD, gHowManyTracksOnAlbum
  12.   if Stopped(gCD) then
  13.     play(gCD, gCDtrackplaying, gHowManyTracksOnAlbum)
  14.     startTimer()
  15.     repeat while the timer < 15
  16.     end repeat
  17.   end if
  18.   set the cursor of sprite the currentSpriteNum to 0
  19. end
  20.  
  21. on mouseLeave
  22.   set the cursor of sprite the currentSpriteNum to 0
  23. end
  24.